home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Programmation
/
jedit
/
jedit5.1.0install.exe
/
{app}
/
macros
/
Emacs
/
Emacs_Kill_Ring_Save.bsh
< prev
next >
Wrap
Text File
|
2013-07-28
|
655b
|
23 lines
/**
* Emulate GNU Emacs's "kill-ring-save" capability (normally bound to Meta-W),
* which copies the text between the caret and the mark to the kill ring. This
* version is slightly different than the Emacs version: If there's any
* selected text, it copies that text. Otherwise, it selects the text between
* the caret and the mark, and copies that.
*
* Does NOT use jEdit markers.
*/
source (MiscUtilities.constructPath(dirname(scriptPath), "EmacsUtil.bsh"));
void emacsKillRingSave()
{
selection = getKillRegion();
if (selection == null)
beep();
else
addToClipboardAndHistory (selection);
}
emacsKillRingSave();